body {
  background-color: #0F1626;
  font-family: 'Inter', sans-serif;
}

:root {
  --content-left: 122.5px;
}

.gas-section {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 1294px;
  margin: 0 auto;
  padding: 50px 0;
  padding-top: 244px;

}


.gas-card {
  width: 415px;
  height: 273px;
  border-radius: 16px;
  padding: 36px 24px 36px 24px;
  background: linear-gradient(135deg,
      rgba(4, 42, 73, 0.15) 0%,
      rgba(6, 6, 6, 0.9) 100%);
  color: #ffffff;
  box-sizing: border-box;
  gap: 16px;
}

.gas-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 100%;
  margin: 0 0 16px 0;
  color: #ffffff;
}

.gas-desc {
  font-size: 24px;
  font-weight: 400;
  line-height: 100%;
  margin: 0;
  color: #ffffff;
}

@media (max-width: 440px) {
  .gas-section {
    width: 100vw;
    max-width: 440px;
    /* margin: 0 auto; */
    padding: 100px 0 0 6px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    overflow-x: auto;
    box-sizing: border-box;
    scrollbar-width: none;
    -ms-overflow-style: none;
    background: none;
  }

  .gas-section::-webkit-scrollbar {
    display: none;
  }

  .gas-card {
    flex: 0 0 181px;
    width: 181px;
    height: 140px;
    border-radius: 0;
    padding: 0;
    background: #0606061A;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    box-sizing: border-box;
    gap: 0;
  }

  .gas-title {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    margin: 16px 0 2px 12px;
    text-align: left;
    line-height: 1.1;
  }

  .gas-desc {
    font-size: 10px;
    font-weight: 400;
    color: #fff;
    margin: 0 0 0 12px;
    text-align: left;
    line-height: 1.3;
    max-width: 157px;
    max-height: 100px;
    overflow: visible;
    text-overflow: unset;
    display: block;
    white-space: normal;
  }
}